/* ========================================
   ESCUELA DE HUERTA
   Estilos principales
   ======================================== */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f2e8;
    color: #33412b;
    line-height: 1.6;
}

/* Encabezado */

header {
    background: #6b7d45;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

header h1 {
    margin: 0;
    font-size: 2.4rem;
}

header p {
    margin: 10px 0 0;
    font-size: 1.1rem;
}

/* Contenido principal */

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 20px;
}

section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

section h2 {
    margin-top: 0;
}

/* Navegación */

nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

nav a {
    display: block;
    padding: 18px;
    background: white;
    color: #33412b;
    text-decoration: none;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #d8ddc8;
    font-weight: bold;
}

nav a:hover {
    background: #e7ecd9;
}

/* Pie de página */

footer {
    text-align: center;
    padding: 25px;
    font-size: 0.9rem;
}

.boton-donar {
    display: inline-block;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
}

/* Textos introductorios */

.intro-ideas {
    text-align: center;
}

.intro-asociaciones {
    text-align: center;
}

/* Propuestas Huerta en 1 m² */

.propuesta-1m2 {
    text-align: center;
}

.imagen-portada {
    text-align: center;
}

.imagen-portada img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.lista-especies img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.lista-especies a {
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

.volver-inicio {
    text-align: center;
    margin: 30px 0 10px;
}

.volver-inicio a {
    color: #33412b;
    text-decoration: none;
    font-weight: bold;
}

.colaboracion {
    text-align: center;
}

.donar {
    text-align: center;
}